home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0697.zip / WIESMAN.ZIP / CTRLDLG.H < prev    next >
C/C++ Source or Header  |  1997-01-20  |  1KB  |  48 lines

  1. // CtrlDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CCustCtrlDlg dialog
  6. #include "clockctl.h"
  7. #include "dialctrl.h"
  8.  
  9.  
  10. class CCustCtrlDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     CCustCtrlDlg(CWnd* pParent = NULL);    // standard constructor
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CCustCtrlDlg)
  18.     enum { IDD = IDD_CUSTCTRL_DIALOG };
  19.         // NOTE: the ClassWizard will add data members here
  20.     //}}AFX_DATA
  21.     CClockControl    m_clock;
  22.     CDialControl    m_dial;
  23.     CDialControl    m_dial2;
  24.     CDialControl    m_dial3;
  25.  
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CCustCtrlDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.     HICON m_hIcon;
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CCustCtrlDlg)
  38.     virtual BOOL OnInitDialog();
  39.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  40.     afx_msg void OnPaint();
  41.     afx_msg HCURSOR OnQueryDragIcon();
  42.     afx_msg void OnTimer(UINT nIDEvent);
  43.     afx_msg void OnDestroy();
  44.     //}}AFX_MSG
  45.     afx_msg void OnDial();
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.